All Questions
4 questions
5votes
4answers
2kviews
Automate the boring stuff with python - Character picture grid
Character Picture Grid Say you have a list of lists where each value in the inner lists is a one-character string, like this: ...
2votes
1answer
373views
Dice roller - python
I am about to graduate with my Associates degree in Math and will soon go for my bachelors. I've decided with two years of school left its best if I start learning to program. I am starting with ...
8votes
1answer
7kviews
Rearrange list by modifying the original list, put even-index values at front
I am relatively new to python and I am still trying to learn the basics of the language. I stumbled upon a question which asks you to rearrange the list by modifying the original. What you are ...
7votes
3answers
4kviews
python (optimizing) bubble sort
I saw in Wikipedia (the first under Optimizing bubble sort) a pseudo-code to bubble sort and I implemented it in Python. I am posting my implementation here because I'm new to Python, and I'm looking ...